-
-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: delete "moduleResolution": "bundler" from tsconfig and jsconfig #12163
Conversation
"moduleResolution": "bundler" is already in "extends": "./.svelte-kit/tsconfig.json"
"moduleResolution": "bundler" is already in "extends": "./.svelte-kit/tsconfig.json"
|
Why remove it? I don't think we should do that. |
I was also thinking of removing it but it’s probably better to not remove it because the generated config only exists after the user runs vite dev, etc. |
Oh right it's part of the generated config by now. Mhm.. |
i actually wonder if we should encourage commiting the generated config instead of ignoring it. |
I actually wonder if we want to go the reverse direction and set E.g. check out the Threlte instructions at https://threlte.xyz/docs/learn/getting-started/installation which have a needless step in their setup instructions because they're missing the |
I'm going to go ahead and close this since the templates have moved to https://github.com/sveltejs/cli |
Delete "moduleResolution": "bundler" from tsconfig and jsconfig as its already in the tsconfig located at "./.svelte-kit/tsconfig.json"
Please don't delete this checklist! Before submitting the PR, please make sure you do the following:
Tests
pnpm test
and lint the project withpnpm lint
andpnpm check
Changesets
pnpm changeset
and following the prompts. Changesets that add features should beminor
and those that fix bugs should bepatch
. Please prefix changeset messages withfeat:
,fix:
, orchore:
.Edits